func go/scanner.isDecimal
6 uses
go/scanner (current package)
scanner.go#L324: return isDecimal(ch) || ch >= utf8.RuneSelf && unicode.IsDigit(ch)
scanner.go#L388: func isDecimal(ch rune) bool { return '0' <= ch && ch <= '9' }
scanner.go#L400: for isDecimal(s.ch) || s.ch == '_' {
scanner.go#L546: case isDecimal(d) || x1 == 'x' && isHex(d):
scanner.go#L831: case isDecimal(ch) || ch == '.' && isDecimal(rune(s.peek())):
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)